Completed
Pull Request — master (#99)
by Johan
01:15
created

MSI1110.js ➔ ???   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 5
rs 9.4285
c 1
b 0
f 0
1
import MSI from './MSI.js';
2
import {mod10, mod11} from './checksums.js';
3
4
class MSI1110 extends MSI{
5
	constructor(string){
6
		super(string);
7
		this.string += mod11(this.string);
8
		this.string += mod10(this.string);
9
	}
10
}
11
12
export default MSI1110;
13